home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / multlang.zip / MEDIT.PAS < prev    next >
Pascal/Delphi Source File  |  1995-12-15  |  726b  |  40 lines

  1. unit Medit;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Mcombbox, MultLang;
  8.  
  9. type
  10.   TEditor = class(TForm)
  11.     Label1: TLabel;
  12.     Button1: TButton;
  13.     MultLang1: TMultLang;
  14.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  15.     procedure Button1Click(Sender: TObject);
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   Editor: TEditor;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. procedure TEditor.FormClose(Sender: TObject; var Action: TCloseAction);
  30. begin
  31.   Action:=caFree;
  32. end;
  33.  
  34. procedure TEditor.Button1Click(Sender: TObject);
  35. begin
  36.   MultLang1.Edit(nil);
  37. end;
  38.  
  39. end.
  40.